The BaseList<(Of <(<'T>)>)> is a base generic class for all lists in C1Schedule's object model. Only objects existing in the owning collection can be added to this list.

Namespace:  C1.C1Schedule
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
public class BaseList<T> : C1ObservableCollection<T>
where T : BasePersistableObject
Visual Basic
Public Class BaseList(Of T As BasePersistableObject) _
	Inherits C1ObservableCollection(Of T)

Type Parameters

T
The type of the objects which will be stored in the list. It should be derived from the BasePersistableObject class.

Inheritance Hierarchy

System..::..Object
  System.Collections.ObjectModel..::..Collection<(Of <(<'T>)>)>
    C1.C1Schedule..::..C1ObservableCollection<(Of <(<'T>)>)>
      C1.C1Schedule..::..BaseList<(Of <(<'T>)>)>
        C1.C1Schedule..::..CategoryList
        C1.C1Schedule..::..ContactList
        C1.C1Schedule..::..LabelList
        C1.C1Schedule..::..ResourceList
        C1.C1Schedule..::..StatusList

See Also